﻿@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Manrope:wght@400;700;800&display=swap');


h1, h2, h3, h4, h5, h6, p, div, body, html, a {
    font-family: 'Instrument Sans', 'sans-serif';
}


body {
    overflow: overlay;
    color: rgba(255,255,255);
    background-color: rgba(55,55,55) !important;
}

.px-45 {
    padding-left: 9%;
    padding-right: 9%;
}

.fs-7 {
    font-size: 1rem;
}

.fs-8 {
    font-size: 1rem;
}

.fw-400 {
    font-weight: 400;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

#logo_img {
    transition: .5s;
}
#logo_img:hover {
    filter: drop-shadow(0px 0px 3px rgba(255, 198, 21, 1));
}

.insightlogoholder {
    position: relative;
    height: 40px;
    width: 138px;
    margin: 15px;
}

.logobutton {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 40px;
    width: 138px;
}

.bulb, .nobulb {
    transition: 0.4s;
}

.bulb {
    pointer-events: none;
}

.insightlogoholder:hover > .bulb {
    filter: drop-shadow(0px 0px 1px rgba(255,255,255)) drop-shadow(0px 0px 2px rgb(247 238 129)) drop-shadow(0px 0px 3px rgb(235 223 73)) drop-shadow(0px 0px 4px rgb(225 213 80)) drop-shadow(0px 0px 5px rgb(221 209 64));
    transform: scale(1.5) translate(-32.3%, -30%);
}

.insightlogoholder:hover > .nobulb {
    filter: invert(7%) sepia(25%) saturate(1.5) drop-shadow(0px 0px 3px rgb(194 184 64)) drop-shadow(0px 6px 1px rgba(45,45,45, 0.6)) drop-shadow(0px 6px 3px rgba(45,45,45, 0.8));
}

#sidebar {
    text-align: center;
    color: rgba(255,255,255);
    background-color: rgba(77,77,77);
    min-width: 250px;
    max-width: 250px;
    overflow: overlay;
    z-index: 900;
    position: fixed;
    transition: 0.5s;
    box-shadow: 7px 7px 7px rgba(0,0,0, 0.33);
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

#sidebar::-webkit-scrollbar {
    width: 0px;
}

::-webkit-scrollbar-track {
    background: rgba(255,255,255) !important;
}

::-webkit-scrollbar-thumb {
    background: rgba(77,77,77,0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(77,77,77,0.65);
}

#sidebar.active {
    margin-left: -250px;
}

#contentpage {
    margin-top: 50px;
}

#mNav_content {
    font-weight: 300;
    font-size: 17px;
    width: calc(100% - 250px);
    padding: 25px;
    margin-left: 250px;
    transition: 0.5s;
    overflow: overlay;
}

#mNav_content.active {
    width: 100%;
    padding: 25px;
    margin-left: 0px;
}

@media all and (max-width: 575px) {
    #sidebar.active {
        min-width: 100%;
        margin-left: 0px;
        position: fixed;
        height: calc(100% - 175px);
    }

    #sidebar {
        margin-left: -100%;
    }

    #mNav_content {
        width: 100%;
        margin-left: 0px;
    }

    #mNav_content.active {
        position: fixed;
    }
}

.notificationdropdown {
    border: none;
    background-color: transparent;
    position: relative;
    /*filter: drop-shadow(3px 3px 3px rgba(0,0,0));*/
    transition: 0.2s;
}

.notificationdropdown:hover {
    transform: scale(1.1);
}

.notificationbell {
    color: rgba(255,255,255);
}

.notificationdropdown:hover > .notificationbell {
    
    
  -webkit-animation: ring 2s 0s ease-in-out 1;
    -webkit-transform-origin: 50% 4px;
    -moz-animation: ring 2s 0s ease-in-out 1;
    -moz-transform-origin: 50% 4px;
    animation: ring 2s 0s ease-in-out 1;
    transform-origin: 50% 4px;
}

@-webkit-keyframes ring {
    0% {
        -webkit-transform: rotateZ(0);
    }

    2% {
        -webkit-transform: rotateZ(30deg);
    }

    6% {
        -webkit-transform: rotateZ(-28deg);
    }

    10% {
        -webkit-transform: rotateZ(34deg);
    }

    14% {
        -webkit-transform: rotateZ(-32deg);
    }

    18% {
        -webkit-transform: rotateZ(30deg);
    }

    22% {
        -webkit-transform: rotateZ(-28deg);
    }

    26% {
        -webkit-transform: rotateZ(26deg);
    }

    30% {
        -webkit-transform: rotateZ(-24deg);
    }

    34% {
        -webkit-transform: rotateZ(22deg);
    }

    38% {
        -webkit-transform: rotateZ(-20deg);
    }

    42% {
        -webkit-transform: rotateZ(18deg);
    }

    46% {
        -webkit-transform: rotateZ(-16deg);
    }

    50% {
        -webkit-transform: rotateZ(14deg);
    }

    54% {
        -webkit-transform: rotateZ(-12deg);
    }

    58% {
        -webkit-transform: rotateZ(10deg);
    }

    62% {
        -webkit-transform: rotateZ(-8deg);
    }

    66% {
        -webkit-transform: rotateZ(6deg);
    }

    70% {
        -webkit-transform: rotateZ(-4deg);
    }

    74% {
        -webkit-transform: rotateZ(2deg);
    }

    78% {
        -webkit-transform: rotateZ(-1deg);
    }

    82% {
        -webkit-transform: rotateZ(1deg);
    }

    86% {
        -webkit-transform: rotateZ(0);
    }

    100% {
        -webkit-transform: rotateZ(0);
    }
}

@-moz-keyframes ring {
    0% {
        -moz-transform: rotate(0);
    }

    2% {
        -moz-transform: rotate(30deg);
    }

    6% {
        -moz-transform: rotate(-28deg);
    }

    10% {
        -moz-transform: rotate(34deg);
    }

    14% {
        -moz-transform: rotate(-32deg);
    }

    18% {
        -moz-transform: rotate(30deg);
    }

    22% {
        -moz-transform: rotate(-28deg);
    }

    26% {
        -moz-transform: rotate(26deg);
    }

    30% {
        -moz-transform: rotate(-24deg);
    }

    34% {
        -moz-transform: rotate(22deg);
    }

    38% {
        -moz-transform: rotate(-20deg);
    }

    42% {
        -moz-transform: rotate(18deg);
    }

    46% {
        -moz-transform: rotate(-16deg);
    }

    50% {
        -moz-transform: rotate(14deg);
    }

    54% {
        -moz-transform: rotate(-12deg);
    }

    58% {
        -moz-transform: rotate(10deg);
    }

    62% {
        -moz-transform: rotate(-8deg);
    }

    66% {
        -moz-transform: rotate(6deg);
    }

    70% {
        -moz-transform: rotate(-4deg);
    }

    74% {
        -moz-transform: rotate(2deg);
    }

    78% {
        -moz-transform: rotate(-1deg);
    }

    82% {
        -moz-transform: rotate(1deg);
    }

    86% {
        -moz-transform: rotate(0);
    }

    100% {
        -moz-transform: rotate(0);
    }
}

@keyframes ring {
    0% {
        transform: rotate(0);
    }

    2% {
        transform: rotate(30deg);
    }

    6% {
        transform: rotate(-28deg);
    }

    10% {
        transform: rotate(34deg);
    }

    14% {
        transform: rotate(-32deg);
    }

    18% {
        transform: rotate(30deg);
    }

    22% {
        transform: rotate(-28deg);
    }

    26% {
        transform: rotate(26deg);
    }

    30% {
        transform: rotate(-24deg);
    }

    34% {
        transform: rotate(22deg);
    }

    38% {
        transform: rotate(-20deg);
    }

    42% {
        transform: rotate(18deg);
    }

    46% {
        transform: rotate(-16deg);
    }

    50% {
        transform: rotate(14deg);
    }

    54% {
        transform: rotate(-12deg);
    }

    58% {
        transform: rotate(10deg);
    }

    62% {
        transform: rotate(-8deg);
    }

    66% {
        transform: rotate(6deg);
    }

    70% {
        transform: rotate(-4deg);
    }

    74% {
        transform: rotate(2deg);
    }

    78% {
        transform: rotate(-1deg);
    }

    82% {
        transform: rotate(1deg);
    }

    86% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(0);
    }
}

.notificationdropdown > .notificationnumber {
    background-color: rgba(227,77,77);
    min-width: 13px;
    min-height: 13px;
    padding: 1px;
    text-align: center;
    border-radius: 50%;
    top: 0px;
    left: 50%;
    transform: none;
}

#mNav_lbl_notification {
    min-width: 13px;
    min-height: 13px;
}

.notificationcircle {
    border-radius: 50%;
    position: relative;
}

.notificationnumber {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: rgba(255,255,255);
    font-size: 10px;
    font-weight: 700 !important;
    position: absolute;
    margin: 0px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(227,77,77);
    min-width: 13px;
    min-height: 13px;
    padding: 1px;
    text-align: center;
    border-radius: 50%;
}

.notificationcirclebtn {
    border-radius: 50%;
    position: absolute;
    top: 23px;
    left: calc(100% - 35px);
    z-index: -1;
}

#mNav_lbl_notificationbtn {
    min-width: 13px;
    min-height: 13px;
}

.navbar {
    --bs-navbar-padding-y: 0;
}

.nav-link, #sidebarCollapse {
    display: block;
    font-weight: 300;
    font-size: 20px;
    max-width: 100%;
    padding: 5px;
    background-color: transparent;
    border: none;
    color: rgba(255,255,255);
}

.nav-link:hover, #sidebarCollapse:hover {
    color: rgba(255,255,255);
}

.nav-link:focus {
    color: rgba(255,255,255);
}

.navbar-nav, .nav-item {
    max-width: 100%;
}

.navbar-custom {
    width: 100%;
}

#lblHdrUserID, .nav-link {
    display: inline-flex;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#lblHdrUserID, .nav-link:after {
    margin-top: auto;
    margin-bottom: auto;
}

#userDropdown {
    /*filter: drop-shadow(3px 3px 3px rgba(0,0,0));*/
}

#mNav_universalHeader {
    background-color: rgba(167,77,77);
    color: rgba(255,255,255);
    border-radius: 0px 0px 11px 11px;
    z-index: 800;
    box-shadow: -7px 7px 17px rgb(0 0 0 / 30%), 7px 7px 17px rgb(0 0 0 / 37%);
}

#universalHeader {
    background-color: rgba(167,77,77);
    color: rgba(255,255,255);
    border-radius: 0px 0px 11px 11px;
    z-index: 800;
    box-shadow: -7px 7px 17px rgb(0 0 0 / 30%), 7px 7px 17px rgb(0 0 0 / 37%);
}

#subheader {
    background-color: rgba(77,77,77);
    box-shadow: 0px 5px rgb(70 70 70);
    border-radius: 0px 0px 10px 0px;
    transition: 0.5s;
}

#subheader.active {
    border-radius: 0px 0px 10px 10px;
}

#subheader.active.backButtonExists {
    border-radius: 0px 0px 5px 0px;
}

#subheader.backButtonExists {
    border-radius: 0px 0px 5px 0px;
}

#subheader h5 {
    display: inline-flex;
    font-weight: 300;
    margin-bottom: 0px;
    white-space: nowrap;
}

#pageName {
    margin-top: auto;
    margin-bottom: auto;
}

#pageName h5 {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 20px;
    margin-top: auto;
    margin-bottom: auto;
}

.companyLabel {
    font-weight: 300;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: auto;
    margin-bottom: auto;
}

@media all and (max-width: 575px) {
    #subheader.active {
        border-radius: 0px 0px 0px 0px;
    }

    #subheader {
        border-radius: 0px 0px 10px 10px;
    }

    #subheader.active.backButtonExists {
        border-radius: 0px 0px 0px 0px;
    }

    .companyLabel {
        text-align: center;
        margin-bottom: 10px;
    }
}

#insightTitle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: rgba(255,255,255);
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 40px;
}

.dropdown-menu {
    padding: 5px;
    border: 1px solid rgba(77,77,77);
    border-radius: 0px 0px 10px 10px;
    box-shadow: 0px 5px rgba(70,70,70);
    background-color: rgba(77,77,77);
    display: block;
    opacity: 0;
    right: 0;
    left: auto;
    pointer-events: none;
    transition: 0.2s;
}

.dropdown-menu.show {
    opacity: 1;
    pointer-events: all;
}

.dropdown-item {
    font-weight: 300;
    color: rgba(255,255,255);
    transition: 0.1s;
}

.dropdown-item:hover {
    color: rgba(255,255,255);
    background-color: rgba(255,255,255, 0.1)
}

.accordion {
    --bs-accordion-inner-border-radius: 0px;
}

.accordion-item, .accordion-header {
    background-color: transparent;
    border: none;
    padding: 0px;
    margin: 0px;
    font-weight: bold;
}

.accordion-button {
    background-color: rgba(70,70,70);
    color: rgba(255,255,255);
    font-weight: 600;
    transition: 0.3s;
}

.accordion-button::after {
    transition: 0.3s;
}

.accordion-button:hover {
    background-color: rgba(47,107,167);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(70,70,70);
    color: rgba(255,255,255);
    box-shadow: 0px 5px rgba(60,60,60);
}

.accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-icon);
}

.accordion-button:not(.collapsed):hover {
    background-color: rgba(47,107,167);
    box-shadow: 0px 5px rgb(41 82 123);
}

.accordion-collapse {
    background-color: rgba(77,77,77);
    border: none;
    transition: 0.3s;
}

.menubutton {
    background-color: transparent;
    color: rgba(255,255,255);
    font-weight: 300;
    width: 100%;
    text-align: left;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 25px;
    transition: 0.3s;
    border: 0px;
}

.menubutton:hover {
    background-color: rgba(47,107,167, 0.4);
    border: 0px;
}

.btn_administration:last-of-type {
    box-shadow: 0px 5px rgba(60,60,60);
    margin-bottom: 20px;
}

.btn_administration:last-of-type:hover {
    box-shadow: 0px 5px rgb(41 82 123);
}

.btn_administration {
    padding: 10px;
    padding-left: 20px;
    font-weight: 600;
    background-color: rgba(70,70,70);
}

.btn_administration:hover {
    background-color: rgba(47,107,167);
}

.hamburgurdur {
    display: inline-block;
    cursor: pointer;
}

.bar1, .bar2, .bar3 {
    width: 35px;
    height: 2px;
    background-color: rgba(255,255,255);
    margin: 9px 0;
    transition: 0.5s;
}

.active .bar1 {
    transform: translate(0, 11px) rotate(-45deg);
}

.active .bar2 {
    opacity: 0;
}

.active .bar3 {
    transform: translate(0, -11px) rotate(45deg);
}

.menuX {
    position: relative;
    height: 40px;
}

.menuX h5 {
    position: absolute;
    top: 0;
    left: 100;
    transform: translate(-10px, 35%);
    padding-left: 20px;
    font-weight: 300;
}

@media all and (min-width: 576px) {
    .active .bar1 {
        transform: translate(0, 0px) rotate(0deg);
    }

    .active .bar2 {
        opacity: 1;
    }

    .active .bar3 {
        transform: translate(0, 0px) rotate(0deg);
    }

    .bar1 {
        transform: translate(0, 11px) rotate(-45deg);
    }

    .bar2 {
        opacity: 0;
    }

    .bar3 {
        transform: translate(0, -11px) rotate(45deg);
    }
}

#userSettings {
    margin: auto;
}

.pageBackButton {
    position: fixed;
    z-index: 999;
    text-decoration: none;
    color: rgba(255,255,255);
    margin-top: -25px;
    margin-left: -25px;
    padding: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    width: 125px;
    background-color: rgba(70,70,70);
    box-shadow: 0px 5px rgba(60,60,60), 7px 7px 7px rgb(0 0 0 / 20%), 7px 13px 7px rgb(0 0 0 / 27%);
    border: none;
    border-radius: 0px 0px 10px;
    transition: left 0.5s, background-color 0.2s, box-shadow 0.2s;
}

@media all and (max-width: 575px) {
    .pageBackButton {
        position: absolute;
    }
}

.pageBackButton:hover {
    background-color: rgba(47,107,167);
    box-shadow: 0px 5px rgb(41 82 123),7px 7px 7px rgb(0 0 0 / 20%), 7px 13px 7px rgb(0 0 0 / 27%);
    color: rgba(255,255,255);
}

.pageBackButton h2 {
    font-size: 20px;
    font-weight: 300;
    text-decoration: none;
    margin-bottom: 0px;
    margin-left: 15px;
}

/* Universal Button Styling */
.textboxinput {
    width: 100%;
    height: 30px;
    color: rgba(55,55,55);
    padding-left: 10px;
    outline: 2px solid rgba(77,77,77);
    border-radius: 10px;
    margin-top: 5px;
    margin-bottom: 20px;
    border: none;
    transition: 0.15s;
}

.textboxinput:focus-visible {
    outline: 2px solid rgba(77,147,207);
}

#mNav_calcpayment {
    background-color: rgba(200, 200, 255);
}

.dropdowninput {
    padding-left: 5px;
    width: 100%;
    height: 30px;
    color: rgba(55,55,55);
    outline: 2px solid rgba(77,77,77);
    border-radius: 10px;
    margin-top: 5px;
    margin-bottom: 20px;
    border: none;
    transition: 0.15s;
}

.dropdowninput:focus-visible {
    outline: 2px solid rgba(77,147,207);
}

.dropdowninput:disabled, .textboxinput:disabled {
    background-color: rgba(200,200,200, 0.5);
}

.buttoninput {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    color: rgba(255,255,255);
    background-color: rgba(97,187,97);
    height: 30px;
    min-width: 40px;
    width: 100%;
    max-width: 125px;
    margin: auto;
    border-radius: 10px;
    border: none;
    transition: 0.2s;
}

.buttoninput:hover {
    background-color: rgba(77,147,77);
}

.buttoninput:disabled {
    background-color: rgba(177,177,177, 0.8) !important;
    color: rgba(255,255,255, 0.8);
}

.deletebutton {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    background: none !important;
    background-color: rgba(167,77,77) !important;
    height: 30px;
    min-width: 40px;
    width: 100%;
    max-width: 125px;
    margin: auto;
    border-radius: 10px;
    border: none;
    transition: 0.2s;
}

.deletebutton:hover {
    background-color: rgba(147,57,57) !important;
}

.closebuttoninput {
    display: flex;
    justify-content: center;
    color: rgba(255,255,255);
    background-color: rgba(167,77,77);
    height: 40px;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    line-height: 35px;
    min-width: 40px;
    width: fit-content;
    border-radius: 10px;
    border: none;
    transition: 0.2s;
    margin-left: auto;
    margin-bottom: -100%;
    z-index: 999;
}

.closebuttoninput:hover {
    background-color: rgba(147,57,57);
}

.gvtable {
    width: fit-content;
    max-width: 100%;
    position: relative;
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
    overflow: overlay;
    max-height: 70vh;
    border-radius: 5px;
    z-index: 9;
    /*box-shadow: -7px 7px 17px rgb(0 0 0 / 30%), 7px 7px 17px rgb(0 0 0 / 37%);*/
    transition: 0.3s;
    background-color: rgba(255,255,255);
}

.gvtable.accordioncollapsed {
    margin-top: 0px;
}

.gvtable tr:first-of-type {
    position: sticky;
    background-color: rgb(27 117 217) !important;
    top: 0;
    z-index: 999;
}

.gvtable td:first-of-type > a {
    text-decoration: none;
    background-color: rgb(0 117 255);
    color: rgba(255,255,255) !important;
    padding: 2px 5px 2px 5px;
    transition: 0.2s;
}

.gvtable td:first-of-type > a:first-of-type {
    border-radius: 7px 0px 0px 7px;
}

.gvtable td:first-of-type > a:hover {
    background-color: rgb(0 92 200);
}

.gvtable tr {
    transition: 0.2s;
}

.gvtable tr:not(:first-of-type):hover {
    background-color: rgba(220,220,220) !important;
}

.gvtable-header {
    font-size: 17px;
    position: fixed;
    width: inherit;
    margin-top: -25px;
    margin-left: -25px;
    z-index: 999;
    pointer-events: none;
    transition: 0.3s ease-in-out;
}

#mNav_content.offcanvasopen > .gvtable-header {
    margin-left: -225px;
}

.gvtable-header > div {
    max-width: 250px;
}

@media all and (max-width: 575px) {
    .gvtable-header {
        position: absolute;
    }

    .gvtable-header > div {
        margin-left: auto;
        margin-right: 13px;
        max-width: 200px;
    }
}

.checkboxinput {
    display: flex;
    white-space: nowrap;
    padding: 5px;
}

input[type="checkbox" i] {
    appearance: checkbox !important;
    height: 16px;
    width: 16px;
    overflow: visible;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 5px;
}

.borderunderline {
    border-bottom: 1px solid rgba(255,255,255);
    padding: 5px;
    padding-bottom: 10px;
    font-weight: 300;
    font-size: 20px;
    padding-left: 20px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.input_container {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(77,77,77);
    border-radius: 10px;
    padding: 10px;
    box-shadow: -7px 7px 17px rgb(0 0 0 / 30%), 7px 7px 17px rgb(0 0 0 / 37%);
}

.tablecontainer_container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tableheader_container {
    padding: 10px;
    max-width: 700px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.modal-content {
    background-color: transparent;
    border: none;
}

#scrollUp {
    position: fixed;
    z-index: 999;
    width: 250px;
    height: 40px !important;
    background: linear-gradient(rgba(45,45,45), transparent);
    transition: 0.35s;
    cursor: pointer;
}

#scrollUp.top {
    opacity: 0;
    pointer-events: none;
}

#scrollDown {
    position: fixed;
    z-index: 999;
    top: calc(100% - 40px);
    height: 40px !important;
    width: 250px;
    background: linear-gradient(transparent, rgba(30,30,30));
    transition: 0.35s;
    cursor: pointer;
}

#scrollDown.bottom {
    opacity: 0;
    pointer-events: none;
}

@media all and (max-width: 575px) {
    #scrollDown, #scrollUp {
        width: 100%;
    }
}

.tableaccordion:not(.collapsed):hover, .tableaccordion:hover {
    background-color: rgb(17 97 197) !important;
    box-shadow: 0px 5px rgb(17 77 177) !important;
    pointer-events: all;
}

.tableaccordion, .tableaccordion:focus, .tableaccordion:not(.collapsed), .tableaccordion:active {
    border-radius: 0px 0px 5px 5px !important;
    background-color: rgb(27 117 217);
    box-shadow: 0px 5px rgb(17 97 197);
    font-weight: bold !important;
    pointer-events: all;
}

#tableControlsBody {
    background-color: rgb(255 255 255) !important;
    margin-bottom: 0px !important;
    border-radius: 0px;
    color: rgb(77 77 77) !important;
    pointer-events: all;
}

#tableControlsBody > div:nth-child(even) {
    background-color: rgb(247 246 243) !important;
}

#gvControlsBody {
    border-radius: 0px 0px 5px 5px !important;
    background-color: rgb(27 117 217);
    box-shadow: 0px 5px rgb(17 97 197);
    margin-bottom: 0px !important;
    color: rgb(255 255 255) !important;
    pointer-events: all;
}

.tableinput {
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255,255,255);
    background: linear-gradient(130deg, rgba(97,187,97,0.925), rgba(67,157,87,0.925));
    background-color: rgba(255,255,255);
    height: 30px;
    min-width: 40px;
    margin: auto;
    width: 65%;
    border-radius: 10px;
    border: none;
    transition: 0.2s;
}

.tableinput:hover {
    background-color: rgba(77,77,77);
}

#paymentcalculator .modal-content {
    background-color: rgba(77,77,77);
}

#btn_calculate {
    max-width: max-content;
    display: block;
}

#paymentcalculator .modal-content {
    width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.boldlabel {
    font-weight: 500;
    display: inline;
}

.pageload {
    transition: 0s !important;
}

.toasttitle {
    color: rgba(255,255,255) !important;
    font-weight: 400 !important;
}

.toastnotification {
    border-radius: 10px !important;
}

.popuptitle {
    font-weight: 400 !important;
}

.popupnotification {
    background-color: rgba(77,77,77) !important;
    color : rgba(255,255,255) !important;
    font-weight: 400 !important;
    border-radius: 10px !important;
    box-shadow: -7px 7px 17px rgb(0 0 0 / 30%), 7px 7px 17px rgb(0 0 0 / 37%);
}

.popupconfirminput {
    background-color: rgba(0,102,151) !important;
    border-radius: 10px !important;
    font-weight: 400 !important;
    height: 35px !important;
    width: 75px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.clickablerow {
    cursor: pointer;
}

.offcanvas.offcanvas-end {
    border-left: none !important;
}

.offcanvas.instantopen {
    transition: none !important;
}

.offcanvas-header {
    background-color: rgb(27 117 217);
    /*min-height: 70px !important;*/
}

.offcanvas-body {
    direction: rtl;
    background-color: rgba(255,255,255);
    color: rgba(77,77,77);
    z-index=2000;
}

    .offcanvas-body .borderunderline {
        border-bottom: 1px solid rgba(77,77,77) !important;
    }

    .offcanvas-body .gvtable {
        margin-top: 0px !important;
        max-height: fit-content !important;
        direction: ltr;
        background-color: rgba(230,230,230);
    }

    .offcanvas-body .buttoninput {
        background: linear-gradient(130deg, rgba(97,187,97,0.925), rgba(67,157,87,0.925));
        background-color: rgba(255,255,255);
    }

        .offcanvas-body .buttoninput:hover {
            background-color: rgba(77,77,77);
        }

.legendButton {
    position: fixed;
    right: -80px;
    display: inline-flex;
    z-index: 99;
    text-decoration: none;
    color: rgba(255,255,255);
    padding: 10px;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 125px;
    background-color: rgba(27,117,217);
    box-shadow: 0px 5px rgba(17,97,197), 7px 7px 7px rgb(0 0 0 / 20%), 7px 13px 7px rgb(0 0 0 / 27%);
    border: none;
    border-radius: 10px 0px 0px 10px;
    transition: right 0.4s, background-color 0.2s, box-shadow 0.2s;
}

    .legendButton:hover {
        right: 0px;
        background-color: rgba(17,97,197);
        box-shadow: 0px 5px rgb(17 77 177),7px 7px 7px rgb(0 0 0 / 20%), 7px 13px 7px rgb(0 0 0 / 27%);
        color: rgba(255,255,255);
    }

@media all and (min-width: 576px) {
    .legendButton {
        right: 0px;
    }
}

svg {
    transition: 0.2s;
}

.legendButton:hover svg {
    color: rgba(17,97,197);
}

.legendButton h2 {
    font-size: 16px;
    font-weight: 300;
    text-decoration: none;
    margin-bottom: 0px;
    margin-left: 15px;
}

.row {
    direction: ltr;
}

@media all and (min-width: 1000px) {
    #mNav_content.offcanvasopen, #mNav_universalHeader.offcanvasopen, #universalHeader.offcanvasopen {
        margin-right: 400px !important;
    }

    #mNav_content, #mNav_universalHeader, #universalHeader {
        transition: margin-right 0.3s ease-in-out, margin-left 0.5s !important;
    }
}

@media all and (max-width: 575px) {
    #mNav_pagecontent_controlsoffcanvas {
        width: 100%;
    }
}

#scheduleIframe {
    width: calc(100vw - 200px);
    max-width: 750px;
    max-height: calc(100vh - 200px);
    border: none;
}

.swal2-modal:has(.swal2-title > #scheduleIframe) {
    width: fit-content !important;
    background-color: rgba(255,255,255) !important;
}

.swal2-title:has(#scheduleIframe) {
    padding: 0px !important;
}

#sendSignatureIframe {
    width: calc(100vw - 200px);
    max-width: 400px;
    max-height: calc(100vh - 200px);
    border: none;
    margin-top: 0.75rem;
}

.swal2-modal:has(.swal2-title > #sendSignatureIframe) {
    width: fit-content !important;
    background-color: rgba(255,255,255) !important;
}

.swal2-title:has(#sendSignatureIframe) {
    padding: 0px !important;
}

/* This is to make sure the google address shows on an offcanvas*/
.pac-container {
    background-color: #FFF;
    z-index: 2001;
    position: fixed;
    display: inline-block;
    float: left;
}